home *** CD-ROM | disk | FTP | other *** search
/ Windows 6-Pak - Disc 5 / Windows 6-Pak (InfoMagic) (Disc 5) (1999).ISO / C&C++Tools / sbparser.exe / cppb / SpeedTest.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-07-01  |  1.5 KB  |  55 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef SpeedTestH
  3. #define SpeedTestH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ExtCtrls.hpp>
  10. #include <ComCtrls.hpp>
  11. #include <Mask.hpp>
  12. //---------------------------------------------------------------------------
  13. class TFSpeedTest : public TForm
  14. {
  15. __published:    // Komponenten, die von der IDE verwaltet werden
  16.     TGroupBox *GBSpeedTest;
  17.     TPanel *PFTop;
  18.     TPanel *PILeft;
  19.     TLabel *LFunction;
  20.     TMemo *MFunction;
  21.     TPanel *PFBottom;
  22.     TPanel *PFRight;
  23.     TButton *BStart;
  24.     TEdit *EResult;
  25.     TLabel *LHowOften;
  26.     TLabel *LTimes;
  27.     TButton *BExit;
  28.     TUpDown *UDTimes;
  29.     TEdit *ETimes;
  30.     TLabel *LcTime;
  31.     TLabel *LtheTime;
  32.     TLabel *Lsec;
  33.     TLabel *LInfo;
  34.     TLabel *LcTime0;
  35.     TLabel *LtheTime0;
  36.     TLabel *Lsec0;
  37.     void __fastcall BExitClick(TObject *Sender);
  38.     
  39.     void __fastcall FormShow(TObject *Sender);
  40.     
  41.     
  42.     void __fastcall BStartClick(TObject *Sender);
  43.     void __fastcall ETimesChange(TObject *Sender);
  44.     
  45.     
  46.     
  47. private:    // Benutzerdeklarationen
  48. public:        // Benutzerdeklarationen
  49.     __fastcall TFSpeedTest(TComponent* Owner);
  50. };
  51. //---------------------------------------------------------------------------
  52. extern PACKAGE TFSpeedTest *FSpeedTest;
  53. //---------------------------------------------------------------------------
  54. #endif
  55.